home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / zapem-0.000 / zapem-0 / zapem / RawKey.h < prev    next >
C/C++ Source or Header  |  1995-06-06  |  311b  |  21 lines

  1. #ifndef ALRAWKEY_H
  2. #define ALRAWKEY_H
  3. #include "control.h"
  4. #include "point.h"
  5. #include "btypes.h"
  6.  
  7. class
  8. RawKey : public Control
  9. {
  10. private:
  11.     int quit,pause,right,left,down,up,fire1,fire2,fire3,fire4;
  12.     int getkey(void);
  13. public:
  14.     RawKey();
  15.     virtual ~RawKey();
  16.  
  17.     void calibrate(void);
  18.     void fetch(void);
  19. };
  20. #endif
  21.